home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / procps.prerm < prev    next >
Text File  |  2008-10-27  |  401b  |  24 lines

  1. #!/bin/sh
  2.  
  3. case "$1" in
  4.   remove|deconfigure)
  5.     update-alternatives --remove w /usr/bin/w.procps
  6.     ;;
  7.   upgrade|failed-upgrade)
  8.     ;;
  9. esac
  10.  
  11. # Automatically added by dh_installinit
  12. if [ -x "/etc/init.d/procps" ]; then
  13.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  14.         invoke-rc.d procps stop || exit $?
  15.     else
  16.         /etc/init.d/procps stop || exit $?
  17.     fi
  18. fi
  19. # End automatically added section
  20.  
  21.  
  22. exit 0
  23.  
  24.